---
title: "챗GPT AI 교육과정"
subtitle: "프로젝트 중심 실무교육과정"
description: |
챗GPT AI 교육과정
author:
- name: 이광춘
url: https://www.linkedin.com/in/kwangchunlee/
affiliation: 한국 R 사용자회
affiliation-url: https://github.com/bit2r
title-block-banner: true
format:
html:
theme: flatly
code-fold: true
code-overflow: wrap
toc: true
toc-depth: 3
toc-title: 목차
number-sections: true
highlight-style: github
self-contained: false
default-image-extension: jpg
embed-resources: true
filters:
- lightbox
lightbox: auto
link-citations: true
knitr:
opts_chunk:
message: false
warning: false
collapse: true
echo: false
comment: "#>"
R.options:
knitr.graphics.auto_pdf: true
editor_options:
chunk_output_type: console
---
## 생성형 AI 실무과정
- 연구주제: 생성형 AI를 활용한 챗GPT 생산성 향상
- 참석인원: XX명 (5명 x 3 개팀)
- 시간: 17:30 \~ 19:30 (2시간)
- 강의노트: [10월 21일](https://hackmd.io/@_NnKkWt7T5iYIToOD1QWRg/HyDZ4l3RA/edit)
## 커리큘럼
```{r}
library(tidyverse)
library(readxl)
library(gt)
library(gtExtras)
extrafont::loadfonts()
curriculum_raw <- read_excel(glue::glue("{here::here()}/data/커리큘럼.xlsx"), sheet = "kgpt")
curriculum <- curriculum_raw %>%
fill(everything(), .direction="down") %>%
mutate(날짜 = as.Date(날짜)) %>%
mutate(주차 = glue::glue("{주차} 회차"))
## 첫번째
curriculum_first <- curriculum %>%
filter(dplyr::row_number() <=10)
curriculum %>%
gt(groupname_col = c("주차", "날짜")) %>%
cols_align(align = "center") %>%
opt_table_font(
font = list(
google_font(name = "Sunflower"),
"NanumGothic"
)
) %>%
gt_theme_pff() %>%
tab_style(
style = list(
"font-variant: small-caps;"
),
locations = cells_body(columns = everything())
) %>%
tab_options(
table.font.names = 'MaruBuri',
column_labels.font.weight = 'bold',
column_labels.font.size = 20,
heading.title.font.size = 16,
heading.subtitle.font.size = 14,
# table.font.color = 'steelblue',
source_notes.font.size = 10,
#source_notes.
table.font.size = 14) %>%
tab_header(
title =
htmltools::tagList(
htmltools::tags$div(
style = htmltools::css(
`text-align` = "center"
),
htmltools::HTML(
web_image("images/curriculum_kgpt.png")
)
),
htmltools::tags$div(
htmltools::tags$strong("챗GPT AI 교육과정"),
"생성형 AI 실무교육과정"
)
)
)
```
## 강의 실습 자료
| 강의회차 | 슬라이드 | 실습 | 비고 |
|:--------:|:----------------------:|:-----------------:|:-----------------:|
| 1 | [강의자료0](https://ai-carpentry.github.io/slideshow/ch00.html#/title-slide) [강의자료1](https://ai-carpentry.github.io/slideshow/ch01.html#/title-slide) | [실습자료1](https://ai-carpentry.github.io/slideshow/ch01_practice.html#/title-slide) | |
| 2 | [강의자료2](https://ai-carpentry.github.io/slideshow/ch02.html#/title-slide) | [실습자료2](https://ai-carpentry.github.io/slideshow/ch02_practice.html#/title-slide) | |
| 3 | [강의자료3](https://ai-carpentry.github.io/slideshow/ch03.html#/title-slide) | [실습자료3](https://ai-carpentry.github.io/slideshow/ch03_practice.html#/title-slide) | |
| 4 | [강의자료4](https://ai-carpentry.github.io/slideshow/ch04.html#/title-slide) | [실습자료4](https://ai-carpentry.github.io/slideshow/ch04_practice.html#/title-slide) | |
| \- | \- | \- | |
## 참고 자료
1. 인공지능 기초
- 데이터 과학 언플러그드 : <https://r2bit.com/book_unplugged/>
- 리보그 세상 - 블록 언어 → R/파이썬 : <https://statkclee.github.io/reeborg/>
- 데이터 과학 프로그래밍 : <https://r2bit.com/book_programming/>
2. 데이터 사이언스
- GS 칼텍스 디지털 아카데미: <https://r2bit.com/curriculum/>
- 연세대학교 데이터 과학: <https://statkclee.github.io/yonsei/> <https://statkclee.github.io/yonsei2/>
3. 챗GPT 데이터 사이언스
- 챗GPT PPT: <https://r2bit.com/bitSlide/>
- 챗GPT 쿼토(디지털 글쓰기): <https://r2bit.com/quarto/>
- 챗GPT 유닉스 쉘: <https://r2bit.com/gpt-shell/>
- 챗GPT 코딩: <https://r2bit.com/gpt-coding/>
- 챗GPT 데이터 과학: <https://r2bit.com/gpt-ds/>
- 챗GPT SQL: <https://r2bit.com/gpt-sql/>
- ~~챗GPT AI: <https://r2bit.com/gpt-ai/>~~\
- 챗GPT 디지털 출판: <https://r2bit.com/bitPublish/>
- 챗GPT 실습: <https://r2bit.com/gpt-edu/>
- 챗GPT 자료: <https://r2bit.com/chatGPT/>
4. 커뮤니티
- 공익법인 한국 R 사용자회: <https://r2bit.com/>
- 서울 R 미트업: <https://r2bit.com/seoul-r/>
- 한국 R 컨퍼런스: <https://use-r.kr/>